Skip to content

Latest commit

 

History

History
134 lines (110 loc) · 4.72 KB

Bicep.md

File metadata and controls

134 lines (110 loc) · 4.72 KB
layout published title nav_order
default
true
Azure Bicep configuration scanning
20

Azure Bicep configuration scanning

Checkov supports the evaluation of policies on your Bicep files. When using checkov to scan a directory that contains a Bicep file it will validate if it is compliant with Azure best practices such as having logging and auditing enabled, Ensure that 'Public access level' is set to Private for blob containers, Ensure no SQL Databases allow ingress from 0.0.0.0/0 (ANY IP), and more.

Full list of ARM templates policies checks can be found here.

Example misconfigured Bicep file

@description('The location in which all resources should be deployed.')
param location string = resourceGroup().location

@description('The name of the app to create.')
param appName string = uniqueString(resourceGroup().id)

var appServicePlanName = '${appName}${uniqueString(subscription().subscriptionId)}'
var appServicePlanSku = 'S1'

resource appServicePlan 'Microsoft.Web/serverfarms@2020-06-01' = {
  name: appServicePlanName
  location: location
  sku: {
    name: appServicePlanSku
  }
  kind: 'app'
}

resource webApp 'Microsoft.Web/sites@2020-06-01' = {
  name: appName
  location: location
  kind: 'app'
  properties: {
    serverFarmId: appServicePlan.id
  }
}

Running in CLI

checkov -d . --framework bicep

Example output

       _               _              
   ___| |__   ___  ___| | _______   __
  / __| '_ \ / _ \/ __| |/ / _ \ \ / /
 | (__| | | |  __/ (__|   < (_) \ V / 
  \___|_| |_|\___|\___|_|\_\___/ \_/  
                                      
By bridgecrew.io | version: 2.0.918 

bicep scan results:

Passed checks: 0, Failed checks: 5, Skipped checks: 0

Check: CKV_AZURE_15: "Ensure web app is using the latest version of TLS encryption"
        FAILED for resource: Microsoft.Web/sites.webApp
        File: anton/bicep/playground/example.bicep:19-26
        Guide: https://docs.bridgecrew.io/docs/bc_azr_networking_6

                19 | resource webApp 'Microsoft.Web/sites@2020-06-01' = {
                20 |   name: appName
                21 |   location: location
                22 |   kind: 'app'
                23 |   properties: {
                24 |     serverFarmId: appServicePlan.id
                25 |   }
                26 | }

Check: CKV_AZURE_17: "Ensure the web app has 'Client Certificates (Incoming client certificates)' set"
        FAILED for resource: Microsoft.Web/sites.webApp
        File: anton/bicep/playground/example.bicep:19-26
        Guide: https://docs.bridgecrew.io/docs/bc_azr_networking_7

                19 | resource webApp 'Microsoft.Web/sites@2020-06-01' = {
                20 |   name: appName
                21 |   location: location
                22 |   kind: 'app'
                23 |   properties: {
                24 |     serverFarmId: appServicePlan.id
                25 |   }
                26 | }

Check: CKV_AZURE_14: "Ensure web app redirects all HTTP traffic to HTTPS in Azure App Service"
        FAILED for resource: Microsoft.Web/sites.webApp
        File: anton/bicep/playground/example.bicep:19-26
        Guide: https://docs.bridgecrew.io/docs/bc_azr_networking_5

                19 | resource webApp 'Microsoft.Web/sites@2020-06-01' = {
                20 |   name: appName
                21 |   location: location
                22 |   kind: 'app'
                23 |   properties: {
                24 |     serverFarmId: appServicePlan.id
                25 |   }
                26 | }

Check: CKV_AZURE_16: "Ensure that Register with Azure Active Directory is enabled on App Service"
        FAILED for resource: Microsoft.Web/sites.webApp
        File: anton/bicep/playground/example.bicep:19-26
        Guide: https://docs.bridgecrew.io/docs/bc_azr_iam_1

                19 | resource webApp 'Microsoft.Web/sites@2020-06-01' = {
                20 |   name: appName
                21 |   location: location
                22 |   kind: 'app'
                23 |   properties: {
                24 |     serverFarmId: appServicePlan.id
                25 |   }
                26 | }

Check: CKV_AZURE_18: "Ensure that 'HTTP Version' is the latest if used to run the web app"
        FAILED for resource: Microsoft.Web/sites.webApp
        File: anton/bicep/playground/example.bicep:19-26
        Guide: https://docs.bridgecrew.io/docs/bc_azr_networking_8

                19 | resource webApp 'Microsoft.Web/sites@2020-06-01' = {
                20 |   name: appName
                21 |   location: location
                22 |   kind: 'app'
                23 |   properties: {
                24 |     serverFarmId: appServicePlan.id
                25 |   }
                26 | }